libxkbcommon: fix broken symlink
authorDaniel Golle <[email protected]>
Thu, 17 Jul 2025 11:09:12 +0000 (12:09 +0100)
committerDaniel Golle <[email protected]>
Thu, 17 Jul 2025 22:53:16 +0000 (23:53 +0100)
/usr/share/X11/xkb should point to ../xkeyboard-config-2
Remove the stray extra '../' to fix the symlink.

Fixes: 7873464 ("libxkbcommon: update to 1.10.0")
Signed-off-by: Daniel Golle <[email protected]>
libs/libxkbcommon/Makefile
libs/xkeyboard-config/Makefile

index 170dcecc73efdc2a98d984f67a87c88de2142020..ab2fa8ae7de3cee5556f4208a96077bbbc2e55be 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libxkbcommon
 PKG_VERSION:=1.10.0
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_VERSION:=xkbcommon-$(PKG_VERSION)
index 4fbe643c68a24ae569b435278d78531d3130f847..ff21028381d7bc834fa000f694f1a5f0ccfd2f86 100644 (file)
@@ -46,7 +46,7 @@ define Package/xkeyboard-config/install
        $(INSTALL_DIR) $(1)/usr/share/xkeyboard-config-2
        $(CP) $(PKG_INSTALL_DIR)/usr/share/xkeyboard-config-2/* $(1)/usr/share/xkeyboard-config-2
        $(INSTALL_DIR) $(1)/usr/share/X11
-       $(LN) ../../xkeyboard-config-2 $(1)/usr/share/X11/xkb
+       $(LN) ../xkeyboard-config-2 $(1)/usr/share/X11/xkb
 endef
 
 $(eval $(call BuildPackage,xkeyboard-config))